net/http.http2ClientConn.streams (field)

19 uses

	net/http (current package)
		h2_bundle.go#L7631: 	streams          map[uint32]*http2clientStream // client-initiated
		h2_bundle.go#L8095: 		streams:                     make(map[uint32]*http2clientStream),
		h2_bundle.go#L8213: 	for streamID, cs := range cc.streams {
		h2_bundle.go#L8304: 		StreamsActive:        len(cc.streams) + cc.pendingResets,
		h2_bundle.go#L8389: 	return len(cc.streams) + cc.streamsReserved + cc.pendingResets
		h2_bundle.go#L8446: 	if len(cc.streams) > 0 || cc.streamsReserved > 0 {
		h2_bundle.go#L8465: 	return cc.doNotReuse && len(cc.streams) == 0
		h2_bundle.go#L8482: 			if len(cc.streams) == 0 || cc.closed {
		h2_bundle.go#L8537: 	for _, cs := range cc.streams {
		h2_bundle.go#L9375: 	cc.streams[cs.ID] = cs
		h2_bundle.go#L9383: 	slen := len(cc.streams)
		h2_bundle.go#L9384: 	delete(cc.streams, id)
		h2_bundle.go#L9385: 	if len(cc.streams) != slen-1 {
		h2_bundle.go#L9389: 	if len(cc.streams) == 0 && cc.idleTimer != nil {
		h2_bundle.go#L9398: 	if closeOnIdle && cc.streamsReserved == 0 && len(cc.streams) == 0 {
		h2_bundle.go#L9494: 	for _, cs := range cc.streams {
		h2_bundle.go#L10091: 	cs := rl.cc.streams[id]
		h2_bundle.go#L10179: 			for _, cs := range cc.streams {
		h2_bundle.go#L10677: 	ci.WasIdle = len(cc.streams) == 0 && reused